home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / filbx2 / progmenu.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-05-08  |  1.6 KB  |  63 lines

  1. VERSION 2.00
  2. Begin Form ProgMenu 
  3.    Caption         =   "Your Nifty Program Goes Here"
  4.    ClientHeight    =   3615
  5.    ClientLeft      =   1095
  6.    ClientTop       =   1740
  7.    ClientWidth     =   7830
  8.    Height          =   4305
  9.    Icon            =   PROGMENU.FRX:0000
  10.    Left            =   1035
  11.    LinkMode        =   1  'Source
  12.    LinkTopic       =   "Form1"
  13.    ScaleHeight     =   3615
  14.    ScaleWidth      =   7830
  15.    Top             =   1110
  16.    Width           =   7950
  17.    Begin Label Label2 
  18.       BorderStyle     =   1  'Fixed Single
  19.       Caption         =   """None"""
  20.       Height          =   260
  21.       Left            =   1080
  22.       TabIndex        =   1
  23.       Top             =   1440
  24.       Width           =   4935
  25.    End
  26.    Begin Label Label1 
  27.       Alignment       =   2  'Center
  28.       BorderStyle     =   1  'Fixed Single
  29.       Caption         =   "Full pathname of file selected"
  30.       Height          =   260
  31.       Left            =   1800
  32.       TabIndex        =   0
  33.       Top             =   1080
  34.       Width           =   3375
  35.    End
  36.    Begin Menu file_menu 
  37.       Caption         =   "&File"
  38.       Begin Menu chooser 
  39.          Caption         =   "&Open File..."
  40.       End
  41.       Begin Menu say_by_by 
  42.          Caption         =   "E&xit"
  43.       End
  44.    End
  45.    Begin Menu tell_me_tell_me_do 
  46.       Caption         =   "&About"
  47.    End
  48. Sub chooser_Click ()
  49.    filebox.Show 1
  50. End Sub
  51. Sub Form_GotFocus ()
  52.     label2.caption = WorkFile
  53. End Sub
  54. Sub Form_Load ()
  55.     CRLF = Chr$(13) + Chr$(10)
  56. End Sub
  57. Sub say_by_by_Click ()
  58.    End
  59. End Sub
  60. Sub tell_me_tell_me_do_Click ()
  61.    about.Show
  62. End Sub
  63.